We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36ec071 commit f27d39dCopy full SHA for f27d39d
interpreter/terminal_interface/profiles/defaults/gemini.py
@@ -0,0 +1,12 @@
1
+"""
2
+This is an Open Interpreter profile. It configures Open Interpreter to run Gemini 1.5 Pro.
3
+
4
+Make sure to set GEMINI_API_KEY environment variable to your API key.
5
6
7
+from interpreter import interpreter
8
9
+interpreter.llm.model = "gemini/gemini-1.5-pro"
10
+interpreter.llm.supports_functions = True
11
+interpreter.llm.context_window = 2000000
12
+interpreter.llm.max_tokens = 4096
0 commit comments