Skip to content

Commit

Permalink
request fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davila7 committed Jan 28, 2024
1 parent 09b3e27 commit bc4a001
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# Judini Python Package 0.1.3
# Judini Python Package 0.1.4
The Judini Python library provides convenient access to CodeGPT's Judini REST API from any Python 3.7+ application. The library includes type definitions for all request parameters and response fields, and offers synchronous and asynchronous clients.

## Documentation
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = judini
version = 0.1.3
version = 0.1.4
author = Daniel Avila
author_email = daniel@judini.ai
description = CodeGPT python package
Expand All @@ -19,8 +19,6 @@ packages = find:
python_requires = >=3.6
install_requires =
requests
aiohttp
asyncio
http
python-dotenv
json
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="judini",
version="0.1.3",
version="0.1.4",
author="Judini Inc.",
author_email="daniel@judini.ai",
description="CodeGPT python package",
Expand All @@ -22,6 +22,6 @@
],
python_requires=">=3.5",
install_requires=[
"requests", "aiohttp", "asyncio", "python-dotenv", "http", "json"
"requests", "python-dotenv", "http", "json"
],
)
1 change: 0 additions & 1 deletion src/judini/codegpt/chat.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import requests
import http
import json

Expand Down

0 comments on commit bc4a001

Please sign in to comment.