-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (53 loc) · 2.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from setuptools import setup, find_packages
VERSION = '0.4'
DESCRIPTION = "GeminiAI-Chat enables easy integration of AI Chat functionalities into Python projects."
# Setting up
setup(
name="geminiai-chat-python",
version=VERSION,
author="mominiqbal1234",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description="""
### Downloads geminiai-chat-python
[![Downloads](https://static.pepy.tech/badge/geminiai-chat-python)](https://pepy.tech/project/geminiai-chat-python)
![image](https://github.com/MominIqbal-1234/geminiai-chat-python/assets/61788052/15e838f4-d6ff-41da-b2b1-366c72c30107)
GeminiAI-Chat – the revolutionary Python library designed to power up your applications with advanced conversational AI capabilities
GeminiAI-Chat, developers can effortlessly integrate AI-driven chat functionalities into their projects,
# How to install geminiai-chat
```python
pip install geminiai-chat-python --upgrade
```
# Documentation
GeminiAI-Chat offers a seamless way to incorporate intelligent, responsive AI chat features
```python
from GeminiAIChat.core import API
res = API("your_api_key") # https://aistudio.google.com/app/apikey
res.prompt("what is python")
print(res.response())
```
## Get API KEY
https://aistudio.google.com/app/apikey
![image](https://github.com/MominIqbal-1234/geminiai-chat-python/assets/61788052/6b573d4a-5d3d-4370-96dc-eca0d327292f)
# Issues
https://github.com/MominIqbal-1234/geminiai-chat-python/issues
# Repository
https://github.com/MominIqbal-1234/geminiai-chat-python
Check Our Site : https://mefiz.com/about </br>
Developed by : Momin Iqbal
""",
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
package_data={'': ['.env']},
install_requires=["httpx","google-generativeai","google-api-python-client"],
keywords=['geminiai-chat-python','python', 'geminiai-chat', 'geminiai'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)