Skip to content

Commit 4aa0d18

Browse files
committed
chore: prep for v0.8.4 release
Signed-off-by: Donnie Adams <[email protected]>
1 parent 573af6b commit 4aa0d18

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ error.
282282
```python
283283
from gptscript.gptscript import GPTScript
284284
from gptscript.frame import RunFrame, CallFrame, PromptFrame
285-
from gptscript.run import Run, RunEventType
285+
from gptscript.run import Run
286+
from gptscript.opts import Options
286287
from gptscript.prompt import PromptResponse
287288

288289
gptscript = GPTScript()
@@ -295,7 +296,7 @@ async def prompt(run: Run, event: RunFrame | CallFrame | PromptFrame):
295296

296297

297298
async def evaluate_example():
298-
run = gptscript.run("/path/to/file", event_handlers=[prompt])
299+
run = gptscript.run("/path/to/file", opts=Options(prompt=True), event_handlers=[prompt])
299300
output = await run.text()
300301

301302
print(output)

examples/run.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import asyncio
2+
3+
from gptscript.gptscript import GPTScript
4+
from gptscript.text import Text
5+
from gptscript.tool import Tool
6+
7+
8+
async def main():
9+
g = GPTScript()
10+
nodes = [
11+
Text(fmt="nodeGraph", text='{"main":{"x":-692.5543409432609,"y":-114.63783459299711}}'),
12+
Tool(chat=True, tools=["sys.prompt"], context=["github.com/gptscript-ai/context/workspace"],
13+
instructions="Ask the user for their 'first name'. Then reply hello to the user."),
14+
]
15+
print(await g.fmt(nodes))
16+
17+
18+
asyncio.run(main())

gptscript/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
gptscript_info = {
2828
"name": "gptscript",
2929
"url": "https://github.com/gptscript-ai/gptscript/releases/download/",
30-
"version": "v0.8.3",
30+
"version": "v0.8.4",
3131
}
3232

3333
pltfm = {"windows": "windows", "linux": "linux", "darwin": "macOS"}.get(

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gptscript"
7-
version = "0.8.3"
7+
version = "0.8.4"
88
description = "Run gptscripts from Python apps"
99
readme = "README.md"
1010
authors = [{ name = "Bill Maxwell", email = "[email protected]" }]

scripts/package

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ from tempfile import TemporaryDirectory
1717
gptscript_info = {
1818
"name": "gptscript",
1919
"url": "https://github.com/gptscript-ai/gptscript/releases/download/",
20-
"version": "v0.7.1",
20+
"version": "v0.8.4",
2121
}
2222

2323
# Define platform-specific variables

0 commit comments

Comments
 (0)