GPT4
1.0.0
GPT4-API
· 報告錯誤 · 請求功能
GPT-4 API是用於與強大的 GPT-4 語言模型互動的介面。它允許您產生自然語言文字、執行問答任務等等。無論您是建立聊天機器人、內容產生器還是創意寫作工具,GPT-4 都能滿足您的需求!
原因如下:
(回到頂部)
確保您已安裝以下內容 -
克隆此存儲庫:
git clone https://github.com/anupammaurya6767/GPT4.git
安裝依賴項:
pip install -r requirements.txt
pip install api-gpt4
config.ini
中設定您的 GPT-4 憑證(Microsoft 帳戶使用者名稱、密碼等)。 初始化 GPT-4 API:
from api . gpt4 import GPT4
ap = GPT4 ( config_file = 'config.ini' )
登入GPT-4服務:
ap . login ()
提出問題或產生文字:
question = 'What is the meaning of life?'
ap . ask_question ( question )
response = ap . get_response ()
影像生成:
prompt = 'A man on bike'
response = ap . design ( prompt )
完成後關閉 API 連線:
ap . close ()
歡迎貢獻!如果您發現錯誤或有增強想法,請提出問題或提交拉取請求。
該項目根據 MIT 許可證獲得許可 - 有關詳細信息,請參閱許可證文件。