Aaron
Aaron
例如:输入``````或######回车发送。
docs/index.md 
windows app提示:当前模型 gpt-4-turbo 不支持发送文件。目前支持的模型:Chatbox AI 4?
from vanna.openai import OpenAI_Chat from vanna.vannadb import VannaDB_VectorStore class MyVanna(VannaDB_VectorStore, OpenAI_Chat): def __int__(self, vanna_model, vanna_api_key, config=None): VannaDB_VectorStore.__init__(self, vanna_model=vanna_model, vanna_api_key=vanna_api_key, config=config) OpenAI_Chat.__init__(self, config=config) VANNA_MODEL = "xxx" VANNA_API_KEY = "xxx" vn =...
Memory can be constructed by introducing Mem0.
`from phi.agent import Agent from phi.model.openai import OpenAIChat from phi.tools.duckduckgo import DuckDuckGo llm_4o = OpenAIChat( temperature=0, id="gpt-4o", api_key="xxxxxxxxxxxxxxxxxxxx=", base_url="http://10.100.100.100:10000/v1", ) web_agent = Agent( name="Web Agent", model=llm_4o, tools=[DuckDuckGo()], instructions=["Always include sources"],...
### 🐛 Describe the bug embedchain 0.1.126 requires chromadb=0.5.10, but you have chromadb 0.6.3 which is incompatible. embedchain 0.1.126 requires langchain-openai=0.2.1, but you have langchain-openai 0.3.3 which is incompatible.
### 🐛 Describe the bug Using embedchain version 0.1.124 everything works fine, but when upgrading to 0.1.125, chroma errors occur. **TypeError: SegmentAPI.get_or_create_collection() got an unexpected keyword argument 'embedding_function'**
[Bug]agno.exceptions.ModelProviderError: Missing required parameter: 'messages[3].content[0].type'
def excel_reader_tool(file_path: str) -> pd.DataFrame: """ Read an Excel file from the given file path and return the data in JSON format. """ df = pd.read_excel(file_path, sheet_name=0) return df #######################################################################################...
from agno.agent import Agent from agno.models.openai import OpenAIChat llm = OpenAIChat( temperature=0, id="gpt-4o", api_key="xxxxxxxxxxxxxxxxxxx=", base_url="http://10.100.100.100:30000/v1", ) agent = Agent( model=llm, description="You are an enthusiastic news reporter with a flair for...