This commit is contained in:
Han Xiao 2025-02-07 10:13:31 +08:00
parent 936b857841
commit cacb06de31

View File

@ -1,6 +1,6 @@
# DeepResearch
Keep searching, reading webpages, reasoning until it finds the answer (or exceeding the token budget).
Keep searching, reading webpages, reasoning until an answer is found (or the token budget is exceeded).
```mermaid
---
@ -95,6 +95,7 @@ If you use Ollama or LMStudio, you can redirect the reasoning request to your lo
```bash
export LLM_PROVIDER=openai # yes, that's right - for local llm we still use openai client
export OPENAI_BASE_URL=http://127.0.0.1:1234/v1 # your local llm endpoint
export OPENAI_API_KEY=whatever # random string would do, as we don't use it (unless your local LLM has authentication)
export DEFAULT_MODEL_NAME=qwen2.5-7b # your local llm model name
```