Skip to content

Commit

Permalink
improve notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed May 17, 2024
1 parent 696435e commit 7f7fbca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Focus on AI (RAG, fine-tuning, aligment, training) and skip engineering tasks (f

## Getting started

To create and share a chatbot in seconds by running the following commands:
Create and share a chatbot in seconds by running the following commands:

```bash
pip install hal9
Expand Down
7 changes: 5 additions & 2 deletions python/hal9.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@
"%%writefile app.py\n",
"import sys\n",
"\n",
"echo = input()\n",
"print(f\"Echo: {echo}\")"
"# read user message from stdin\n",
"prompt = input()\n",
"\n",
"# write chat reply to stdout\n",
"print(f\"Echo: {prompt}\")"
],
"metadata": {},
"execution_count": null,
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hal9"
version = "2.1.2"
version = "2.1.3"
description = ""
authors = ["Javier Luraschi <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 7f7fbca

Please sign in to comment.