/
githubmirror
/
langroid
Обзор
Документация
Войти
/
githubmirror
/
langroid
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.59.39
examples/basic/chat-local.py
57 строк
2 KB
Prasad Chalasani
Add TaskTool dynamic sub-agent spawn example + ruff auto-fix for examples (#876)
28 июн 2025, 00:02
Не верифицирован
28 июн 2025, 00:02
7169fc4
Код
Авторство
О чём код?
""" Basic chat example with a local LLM. See here for how to set up a Local LLM to work with Langroid: https://langroid.github.io/langroid/tutorials/local-llm-setup/ Run this script as follows: ``` python examples/basic/chat-local.py --model <local_model_spec> ``` """ from fire import Fire import langroid as lr import langroid.language_models as lm # Assume you've run `ollama pull mistral` to spin up `mistral` locally. # Notes: # - we use `lm.OpenAIGPTConfig` to incidate this config is for LLMs served # at OpenAI-compatible endpoints) # - if you omit `chat_model` below, it defaults to OpenAI GPT4-turbo, # or you can explicitly specify it as `lm.OpenAIChatModel.GPT4` or `lm.OpenAIChatModel.GPT4o` def main(model: str = ""): llm_config = lm.OpenAIGPTConfig( chat_model=model or lm.OpenAIChatModel.GPT4o, # or,e.g. "ollama/mistral" max_output_tokens=200, chat_context_length=2048, # adjust based on your local LLM params ) # Alternatively, if you've used ooba or other lib to spin up a Local LLM # at an OpenAI-compatible endpoint, say http://localhost:8000, you can set the # `chat_model` as follows (note you have to prefix it with 'local'): # llm_config = lm.OpenAIGPTConfig( # chat_model="local/localhost:8000" # ) # If the endpoint is listening at https://localhost:8000/v1, you must include the `v1` # at the end, e.g. chat_model="local/localhost:8000/v1" agent_config = lr.ChatAgentConfig( llm=llm_config, system_message="""Be helpful but very very concise""", ) agent = lr.ChatAgent(agent_config) task = lr.Task(agent) task.run() if __name__ == "__main__": Fire(main)