Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

code refactor of quora module #173

Merged
merged 4 commits into from
Apr 27, 2023
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
Next Next commit
refactored the code and updated Poe class to accept keyword arguments…
… to specify driver type
  • Loading branch information
sudouser777 committed Apr 26, 2023
commit 90e7797a4cdff8b6d9d4a1f3677ab8e765bc660c
2 changes: 1 addition & 1 deletion quora/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ from quora import Poe

# available models: ['Sage', 'GPT-4', 'Claude+', 'Claude-instant', 'ChatGPT', 'Dragonfly', 'NeevaAI']

poe = Poe(model='ChatGPT')
poe = Poe(model='ChatGPT', driver='firefox', cookie_path='cookie.json')
poe.chat('who won the football world cup most?')

# new bot creation
Expand Down
Loading