Skip to content

Commit

Permalink
Merge pull request xtekky#89 from sudouser777/fix/poe_account_creation
Browse files Browse the repository at this point in the history
Fix for Poe account creation
  • Loading branch information
xtekky authored Apr 25, 2023
2 parents 7e27bff + 98afd5b commit 746dd87
Show file tree
Hide file tree
Showing 6 changed files with 613 additions and 387 deletions.
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

.idea/

*/__pycache__/

*.log

cookie.json
14 changes: 14 additions & 0 deletions quora/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,17 @@ response = quora.Completion.create(model = 'gpt-4',

print(response.completion.choices[0].text)
```

#### Update Use This For Poe
```python
from quora import Poe

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

poe = Poe(model='ChatGPT')
poe.chat('who won the football world cup most?')

# new bot creation
poe.create_bot('new_bot_name', prompt='You are new test bot', base_model='gpt-3.5-turbo')

```
Loading

0 comments on commit 746dd87

Please sign in to comment.