Open Interpreter lets LLMs run code (Python, Javascript, Shell, and more) locally. You can chat with Open Interpreter through a ChatGPT-like interface in your terminal by running $ interpreter after installing.
replace the rest of the KillianLucas urls with OpenInterpreter Aug 27, 2024 examples Introduced Dockerfile for running isolated Open Interpreter, specifyi… Aug 23, 2024 installers Switched icon url to main repo location for PR Aug 13, 2024 interpreter Better skills, better web browser Sep 5, ...
Open Interpreter主要是用来实现在本地和大语言模型进行交互的,通过大语言模型将自然语言转换为脚本代码,然后在本地执行从而实现目标。安装后运行,您可以通过终端中类似 ChatGPT 的界面与 Open Interpreter 进行聊天。 它为计算机的通用功能提供了一个自然语言界面,比如: 创建和编辑照片、视频、PDF 等 控制Chrome 浏览器...
Open Interpreter 还可以执行文件 I/O 操作。例如,创建一个文本文件并写入内容: Create a text file named 'myfile.txt' and write 'Hello, I am learning how to use Open Interpreter' toit. Open Interpreter 输出: with open("myfile.txt", "w") as file: file.write("Hello, I am learning how ...
This project allows large language models to run code locally, supporting programming languages such as Python, JavaScript, and Shell. It acts as a natural language interpreter, converting spoken or written instructions into the corresponding code scripts and executing them. After installation, users ...
Open Interpreter 输出: import requestsurl = "https://api.openweathermap.org/data/2.5/weather"params= { "q": "London", "appid": "YOUR_API_KEY", # 请替换为你的 OpenWeatherMap API Key "units": "metric"}response = requests.get(url, params=params)data = response.jsonprint(f"The curren...
在本地安装也非常简单(前提是安装好了Python),只需要一行“pip install open-interpreter”的代码就能搞定。 安装好后,在终端中输入“interpreter”就能直接启动。 这时程序会要求输入GPT-4的API,如果只有3.5的话,启动时要用“interpreter --fast”。 如果3.5也没有的话,可以直接在这步按回车,或者启动时直接输入“...
提交项目 EN 项目详情 由分享 open-interpreter 让LLM 在你的计算机上运行代码 HelloGitHub 评分 0 人评分 过去7 天共收获 76 颗 Star ✨ 访问 点赞0 开源•AGPL-3.0 认领 讨论 收藏 分享 59.5k 星数 否 中文 Python 主语言 是 活跃 124
Install-Package OpenProtocolInterpreter Advanced Section! Now we will get real! Put one thing in mind, in real world we will always need to build something more complex than the dummies examples we give to you.With this in mind, this section is for you: ...
API模式下,使用 gpt-3.5-turbo 或 gpt-4 API,仅需OpenAI Api Key,开箱即用。注意收费 支持问答图片截图和聊天记录导出 支持AI性格调教,角色扮演强烈推荐Bing自定义模式 支持对接vits和Azure等回答直接转语音 API3模式下,绕过Cloudflare防护直接访问ChatGPT的SSE API,与官方体验一致,且保留对话记录,在官网可查。免费...