Files
2025-10-01 07:53:50 +02:00

26 lines
784 B
Markdown

# LLM API
## LMstudio
Use this file src\lib\lmstudio.ts
- async function callLmstudio(prompt: string): Promise<any> {
for just run prompt
- async function callLMStudioAPIWithFile(imagePath: string, prompt: string): Promise<any> {
for send file to llm
## OpenAI
Use this file src\lib\openai.ts
- async function callOpenAI(prompt: string): Promise<any>
for just run prompt
- async function callOpenAIWithFile(imagePath: string, prompt: string): Promise<any>
for send file to llm
Please construct prompt to return json alswasy for calling llm api to generate text.
If nothing specified add following instructin in the given prompt
Return the result in this forket
{"result":""}
Then extract the result param in program you generate, don't change the original function