OSU-NLP-Group / TravelPlanner

[ICML'24 Spotlight] "TravelPlanner: A Benchmark for Real-World Planning with Language Agents"
https://osu-nlp-group.github.io/TravelPlanner/
MIT License
215 stars 27 forks source link

openLLM configuration issues #14

Closed yananchen1989 closed 5 months ago

yananchen1989 commented 5 months ago

hi there,

for open models, such as mistral, ChatGLM3-6B-32K etc, in your code https://github.com/OSU-NLP-Group/TravelPlanner/blob/main/agents/tool_agents.py#L127, why model_name="gpt-3.5-turbo" ?

may I know the reason ? thanks.

hsaest commented 5 months ago

Hi Yanan,

Thank you for your interest in our work.

LangChain uses OpenAI model names by default, so we need to assign some faux OpenAI model names to our local model.

We use fastchat to deploy our local models, and you can see the details here.

Feel free to contact us if you have further questions.

Best, Jian

yananchen1989 commented 5 months ago

thanks a lot.