solana-agent 1.4.3__tar.gz → 1.4.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {solana_agent-1.4.3 → solana_agent-1.4.4}/PKG-INFO +1 -1
- {solana_agent-1.4.3 → solana_agent-1.4.4}/pyproject.toml +1 -1
- {solana_agent-1.4.3 → solana_agent-1.4.4}/solana_agent/ai.py +4 -4
- {solana_agent-1.4.3 → solana_agent-1.4.4}/LICENSE +0 -0
- {solana_agent-1.4.3 → solana_agent-1.4.4}/README.md +0 -0
- {solana_agent-1.4.3 → solana_agent-1.4.4}/solana_agent/__init__.py +0 -0
|
@@ -111,8 +111,8 @@ class AI:
|
|
|
111
111
|
cohere_api_key: str = None,
|
|
112
112
|
cohere_model: Literal["rerank-v3.5"] = "rerank-v3.5",
|
|
113
113
|
gemini_api_key: str = None,
|
|
114
|
-
code_interpreter: bool =
|
|
115
|
-
file_search: bool =
|
|
114
|
+
code_interpreter: bool = False,
|
|
115
|
+
file_search: bool = False,
|
|
116
116
|
openai_assistant_model: Literal["gpt-4o-mini",
|
|
117
117
|
"gpt-4o"] = "gpt-4o-mini",
|
|
118
118
|
openai_embedding_model: Literal[
|
|
@@ -134,8 +134,8 @@ class AI:
|
|
|
134
134
|
cohere_api_key (str, optional): API key for Cohere search. Defaults to None
|
|
135
135
|
cohere_model (Literal["rerank-v3.5"], optional): Cohere model for reranking. Defaults to "rerank-v3.5"
|
|
136
136
|
gemini_api_key (str, optional): API key for Gemini search. Defaults to None
|
|
137
|
-
code_interpreter (bool, optional): Enable code interpretation. Defaults to
|
|
138
|
-
file_search (bool, optional): Enable file search tool. Defaults to
|
|
137
|
+
code_interpreter (bool, optional): Enable code interpretation. Defaults to False
|
|
138
|
+
file_search (bool, optional): Enable file search tool. Defaults to False
|
|
139
139
|
openai_assistant_model (Literal["gpt-4o-mini", "gpt-4o"], optional): OpenAI model for assistant. Defaults to "gpt-4o-mini"
|
|
140
140
|
openai_embedding_model (Literal["text-embedding-3-small", "text-embedding-3-large"], optional): OpenAI model for text embedding. Defaults to "text-embedding-3-large"
|
|
141
141
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|