🌐 AI搜索 & 代理 主页
Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pgml 0.9.4 from pypi
  • Loading branch information
santiadavani committed Oct 24, 2023
commit 27576beca191e36d78a562dd2d4bf11872d09d77
3 changes: 2 additions & 1 deletion pgml-apps/pgml-chat/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,5 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

pgml_chat/pgml_playground.py
pgml_chat/pgml_playground.py
pgml_chat/llama2.py
2 changes: 2 additions & 0 deletions pgml-apps/pgml-chat/pgml_chat/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pgml_playground.py
llama2.py
4 changes: 3 additions & 1 deletion pgml-apps/pgml-chat/pgml_chat/pgml_playground.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# }
# ).fetch_all()


async def main():
collection = Collection("pgml_chat_all_docs_4_chat_history")
builtins = Builtins()
Expand Down Expand Up @@ -109,6 +109,8 @@ async def main():
)
# print(results)

# llama2-7b-chat


if __name__ == "__main__":
asyncio.run(main())
2 changes: 1 addition & 1 deletion pgml-apps/pgml-chat/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pgml-apps/pgml-chat/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ packages = [{include = "pgml_chat"}]
python = ">=3.8,<4.0"
openai = "^0.27.8"
rich = "^13.4.2"
pgml = {version = "0.9.4", source = "testpypi"}
python-dotenv = "^1.0.0"
click = "^8.1.6"
black = "^23.7.0"
slack-bolt = "^1.18.0"
discord-py = "^2.3.1"
pendulum = "^2.1.2"
pgml = "^0.9.4"


[[tool.poetry.source]]
Expand Down