Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
7 views
Exploring The ChatGPT API With Python
Exploring the ChatGPT API with Python
Uploaded by
Marcos Luis
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Exploring the ChatGPT API with Python For Later
Download
Save
Save Exploring the ChatGPT API with Python For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
7 views
Exploring The ChatGPT API With Python
Exploring the ChatGPT API with Python
Uploaded by
Marcos Luis
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Exploring the ChatGPT API with Python For Later
Carousel Previous
Carousel Next
Save
Save Exploring the ChatGPT API with Python For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 11
Search
Fullscreen
s115i24, 8:41 AM Exploring the ChatGPT API with Python | MLExpert- Get Things Done with Al Bootcamp Blog > Chatgpt API Exploring the ChatGPT API with Python Exploring the ChatGPT API with Python: Multiple Completions, Max Tokens, ... OpenAl recently introduced? the ChatGPT API along with the Whisper API, which has already been integrated into some popular apps such as Snapchat and Instacart. The new ChatGPT API features a new model called gpt-3.5-turbo that has replaced the previously most commonly used model, text-davinci-e03 Join the AI BootCamp! Ready to dive into the world of Al and Machine Learning? Join the Al BootCamp to transform your career with the latest skills and hands-on project experience. Learn about LLMs, ML best practices, and much more! JOIN NOW ntpshwwwmlexperoxblogichatgpt-ap wtrsa, e:1aM Explering the ChaGPT API wth Python | MLEeper - Get Things Done wth AI Botcamp This new model is the exact same model used in the ChatGPT web app. Also, itis about 10x cheaper! The OpenAl team recommends the new model as a replacement for all previously used models. This part will utilize the official Python library provided by OpenAl, which includes a new component called ChatCompletion specifically designed for ChatGPT. Let's get started! © In this tutorial, we will be using Jupyter Notebook to run the code. If you prefer to follow along, you can access the notebook here: open the notebook Get API Key To use the API, you will need to register for an account on the OpenAl platform and generate an API key from this page: https://platform.openai.com/account/api-keys Setup You'll need the openai @ library, version @.27.0 . We'll also use the tiktoken 3 to count number of tokens in a given text: pip install -qqq openai==0.27.0 pip install -qqq tiktoken==0.3.0 Next, let's add imports and set the API key: import openai import tiktoken from IPython.display import display, Markdown openai.api_key = "YOUR API KEY" https shwwn-mlexpertiafblogichatgpt-ap| ams115i24, 8:41 AM Exploring the ChatGPT API with Python | MLExpert- Get Things Done with Al Bootcamp Call the API To start with the APIS, we'll need a prompt. Let's reuse the prompt from the prompt engineering guide: prompt = Write me a plan of how to invest 10,0@ USD with the goal of making maximum profit in 1 Give specific investments and allocation percentages. Next, we'll make the API call: result = openai.ChatCompletion.create( model="gpt-3.5-turbo", message: {"role": "system", “content”: "You're an expert personal finance advisor."}, {"role": "user", "content": prompt} 1. d result The model parameter specifies the version of the GPT model to use, in this case gpt- 3.5-turbo . The messages parameter is a list of two dictionaries representing the conversation between the user and the model. The first dictionary has a system role and provides a statement to set the context for the conversation. The second dictionary has a user role and contains the prompt. The API response is in JSON format and contains information regarding the response generated by ChatGPT: { "choices": [ { “#inish_reason": “stop, "index": @, "message": { ntps:hwwwmlexperofblogichatgpt-ap aits115i24, 8:41 AM Exploring the ChatGPT API with Python | MLExpert- Get Things Done with Al Bootcamp "content": "\n\nBefore creating an investment plan, it\u2019s important to note assistant” 1678135181, hatcmp] -6rBuPqnXPFt fdLNOcnkvAoldGykQ3" , 1 "gpt-3.5-turbo-03e1", "object": "chat.completion”, “usage”: { “completion_tokens": 397, “prompt_tokens": 54, “total_tokens": 451 Let's have a look at two key-value pairs © choices: an array that contains an object with the response message, index, and finish_reason * usage: an object that provides the number of tokens used to generate the response In this case, the choices array contains only one object, which represents the response message generated by ChatGPT. The message contains a recommended investment plan and some advice for the user. The usage object indicates the number of tokens used to generate the response, which can be useful to track usage and costs. We will use a helper function to extract the message content and display it in Markdown format def show_choice(choice) display (Markdown (choice[ "message"]["content"])) show_choice(result["choices"][@]) [Bi chatcrt Response Conversations https shwww-mlexpertiafblogichatgpt-ap| amssi, sat aM Espoing the ChatGPT AP with Python| MLExpert- Got Things Done wt Al Booteamp The messages parameter is designed to contain the whole conversation between the user and ChatGPT. It's important to note that the API does not have the ability to record or remember previous conversations. To create a conversation with ChatGPT, we can use the result object from the previous API call and add the generated response to the messages list. Then, we can make another API call using this extended messages list to generate a tweet about the personalized finance plan: answer = result[*choices"][]["nessage”][ "content" ] format_prompt "Write the plan as a tweet” result = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=[ “system”, “content”: “You're an expert personal finance advisor."}, "user", “content”: prompt}, “assistant”, “content”: answer}, “user”, "content": format_prompt}, show_choice(result[ "choices" ][@]) Hi chatGrr Response Investing 60% in stocks, 20% in alternative investments, 10-20% in cash reserves, and remaining 10-20% in bonds can maximize profit in 1 year for $10K portfolio. However, always do your research and seek professional advice. #personal finance #investing #portfolioallocation API Options The API has a wide array of options’, We'll have a look at limiting the number of tokens, getting multiple completions and adjusting temperature. Maximum Tokens https shwwn-mlexpertiafblogichatgpt-ap| sits115i24, 8:41 AM Exploring the ChatGPT API with Python | MLExpert- Get Things Done with Al Bootcamp ChatGPT's pricing is token-based, meaning the cost is determined by the number of tokens you use. There is a maximum token limit of 4096 per API request. Both input and output tokens count toward this limit and your payment. To control the maximum number of tokens generated by the model, the max_tokens parameter can be specified response = openai .chatCompletion.create( model="gpt-3.5~turbo" messages=[ (role ‘You're an expert personal finance advisor. (role pronpt} L max_tokens=256 ) response { "choices": [ { “finish_reason": "Length", "index": @, “message t content": "\n\nAs an AI language model, I cannot provide investment advice or assistant” 1678135229, id”: "chatempl-6rBvBDH2qjSFhv@lwPqB1az7dBTU" , model": "gpt-3.5-turbo-0301", "object": "chat.completion”, sage": { ‘completion_tokens": 256, prompt_tokens": 54, total_tokens": 310 https shwwn-mlexpertiafblogichatgpt-ap| eit9115724, 841 AM Exploring the ChatGPT API with Python | MLExpert- Get Things Done with Al Bootcamp Note that the finish_reason isnow stop and completion_tokens is equal to the number of max_tokens - 256. If you want to know how many tokens your prompts contain, you can use the "tiktoken" library to create this function: def num_tokens_fron_messages (messages): Returns the number of tokens used by a list of messages. Code from: https: //github.com/openai /openai -cookbook encoding = tiktoken.encoding_for_model("gpt-3.5-turbo") num_tokens = @ for message in messages num_tokens += 4 # every message follows
{role/name}\n{content}
assistant return num_tokens The num_tokens_from_messages function takes a list of messages and returns the number of tokens that would be used by ChatGPT. Let's check the last messages: messages = [ » "content": "You're an expert personal finance advisor."}, content": prompt} num_tokens_from_messages (messages) 54 The number 54 is the exact same value returned by the usage.prompt_tokens attribute of the API response. This attribute indicates the number of tokens used by the prompt provided in the API request. ntps:hwwwmlexperofblogichatgpt-ap mms115i24, 8:41 AM Exploring the ChatGPT API with Python | MLExpert- Get Things Done with Al Bootcamp Generate Multiple Responses To generate multiple completions for a prompt using ChatGPT API, you can set the n parameter to specify the number of completions you want result = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=[ “content”: "You're an expert personal finance advisor."}, prompt} for i, choice in enumerate(result["choices"]): print(f"Response {i + 1}:") show_choice(choice) print("\n") [HB chatort Response Temperature You can adjust the level of randomness and creativity in the responses generated by ChatGPT using the temperature parameter. The temperature ranges from 0 to 2, with a default value of 1. A lower temperature will result in more focused and predictable responses, while a higher temperature will result in more diverse and unpredictable responses: result = openai.chatCompletion.create( model="gpt-3.5-turbo", messages=[ "system", : "user", " "You're an expert personal finance advisor."}, : prompt} iy temperature=0 d show_choice(result["choices"][@]) https shwwn-mlexpertiafblogichatgpt-ap| amt115i24, 8:41 AM Exploring the ChatGPT API with Python | MLExpert- Get Things Done with Al Bootcamp HB chatarr Response result = openai.ChatCompletion.create( model="gpt-3.5-turbo" messages=[ {("role": "system", “content”: "You're an expert personal finance advisor."}, {role": "user", “content”: prompt} iy ‘temperature=1 ) show_choice(result, choices” [e]) HB chatert Response result = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=[ role "content": "You're an expert personal finance advisor. ("role content": prompt} L temperatun’ ) show_choice(result["choices"][@]) Hi chaterr Response response = openai .chatCompletion.create( gpt-3.5-turbo", system", “content user", ‘You're an expert personal finance advisor content": prompt} temperature ) show_choice(response["choices"][@]) [HB chaterr Response ntps:hwwwmlexperofblogichatgpt-ap omns, :41aM Explring the ChaGPT API wth Python | MLEeper- Get Things Done wth Al Boicamp Gradually increasing the temperature parameter can lead to more random and nonsensical completions, while finding the right balance of values can result in more focused and relevant responses Conclusion In conclusion, we have explored various features and functionalities of OpenAl's ChatGPT API. We have seen how to control the number of tokens, get multiple completions, adjust the temperature, and extract message content using helper functions. Compared to the web app, the ChatGPT API offers significantly more customization options. One particularly interesting area to explore is creating and modifying conversations, which can potentially result in better response generation. 3,000+ people already joined Join the The State of Al Newsletter Every week, receive a curated collection of cutting-edge Al developments, practical tutorials, and analysis, empowering you to stay ahead in the rapidly evolving field of AL Your Email Address SUBSCRIBE Iwon't send you any spam, ever! References 1. ChatGPT and Whisper APIs @ 2. Qpenai Python Library © https shwwn-mlexpertiafblogichatgpt-ap| somssi, st aM Espoing the ChatGPT AP with Python| MLExpert- Got Things Done wt Al Booteamp Tiktoken Library & ChatGPT API Tutorial © 5. ChatGPT API Reference © hitpsswww-mlexper ioblog/chatgpt-api awit
You might also like
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
From Everand
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
Mark Manson
4/5 (6127)
Principles: Life and Work
From Everand
Principles: Life and Work
Ray Dalio
4/5 (627)
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
From Everand
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
Brene Brown
4/5 (1148)
Never Split the Difference: Negotiating As If Your Life Depended On It
From Everand
Never Split the Difference: Negotiating As If Your Life Depended On It
Chris Voss
4.5/5 (932)
The Glass Castle: A Memoir
From Everand
The Glass Castle: A Memoir
Jeannette Walls
4/5 (8215)
Grit: The Power of Passion and Perseverance
From Everand
Grit: The Power of Passion and Perseverance
Angela Duckworth
4/5 (631)
Sing, Unburied, Sing: A Novel
From Everand
Sing, Unburied, Sing: A Novel
Jesmyn Ward
4/5 (1253)
The Perks of Being a Wallflower
From Everand
The Perks of Being a Wallflower
Stephen Chbosky
4/5 (8365)
Shoe Dog: A Memoir by the Creator of Nike
From Everand
Shoe Dog: A Memoir by the Creator of Nike
Phil Knight
4.5/5 (860)
Her Body and Other Parties: Stories
From Everand
Her Body and Other Parties: Stories
Carmen Maria Machado
4/5 (877)
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
From Everand
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
Ben Horowitz
4.5/5 (361)
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
From Everand
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
Margot Lee Shetterly
4/5 (954)
Steve Jobs
From Everand
Steve Jobs
Walter Isaacson
4/5 (2923)
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
From Everand
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
Ashlee Vance
4.5/5 (484)
The Emperor of All Maladies: A Biography of Cancer
From Everand
The Emperor of All Maladies: A Biography of Cancer
Siddhartha Mukherjee
4.5/5 (277)
A Man Called Ove: A Novel
From Everand
A Man Called Ove: A Novel
Fredrik Backman
4.5/5 (4972)
Angela's Ashes: A Memoir
From Everand
Angela's Ashes: A Memoir
Frank McCourt
4.5/5 (444)
Brooklyn: A Novel
From Everand
Brooklyn: A Novel
Colm Tóibín
3.5/5 (2061)
The Art of Racing in the Rain: A Novel
From Everand
The Art of Racing in the Rain: A Novel
Garth Stein
4/5 (4281)
The Yellow House: A Memoir (2019 National Book Award Winner)
From Everand
The Yellow House: A Memoir (2019 National Book Award Winner)
Sarah M. Broom
4/5 (100)
The Little Book of Hygge: Danish Secrets to Happy Living
From Everand
The Little Book of Hygge: Danish Secrets to Happy Living
Meik Wiking
3.5/5 (447)
The World Is Flat 3.0: A Brief History of the Twenty-first Century
From Everand
The World Is Flat 3.0: A Brief History of the Twenty-first Century
Thomas L. Friedman
3.5/5 (2283)
Yes Please
From Everand
Yes Please
Amy Poehler
4/5 (1987)
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
From Everand
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
Gilbert King
4.5/5 (278)
Bad Feminist: Essays
From Everand
Bad Feminist: Essays
Roxane Gay
4/5 (1068)
The Outsider: A Novel
From Everand
The Outsider: A Novel
Stephen King
4/5 (1993)
The Woman in Cabin 10
From Everand
The Woman in Cabin 10
Ruth Ware
3.5/5 (2641)
A Tree Grows in Brooklyn
From Everand
A Tree Grows in Brooklyn
Betty Smith
4.5/5 (1936)
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
From Everand
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
Viet Thanh Nguyen
4.5/5 (125)
OpenAI Official Prompt Engineering Guide
PDF
No ratings yet
OpenAI Official Prompt Engineering Guide
17 pages
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
From Everand
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
Dave Eggers
3.5/5 (692)
Team of Rivals: The Political Genius of Abraham Lincoln
From Everand
Team of Rivals: The Political Genius of Abraham Lincoln
Doris Kearns Goodwin
4.5/5 (1912)
Wolf Hall: A Novel
From Everand
Wolf Hall: A Novel
Hilary Mantel
4/5 (4074)
On Fire: The (Burning) Case for a Green New Deal
From Everand
On Fire: The (Burning) Case for a Green New Deal
Naomi Klein
4/5 (75)
Rise of ISIS: A Threat We Can't Ignore
From Everand
Rise of ISIS: A Threat We Can't Ignore
Jay Sekulow
3.5/5 (143)
Fear: Trump in the White House
From Everand
Fear: Trump in the White House
Bob Woodward
3.5/5 (830)
Manhattan Beach: A Novel
From Everand
Manhattan Beach: A Novel
Jennifer Egan
3.5/5 (901)
John Adams
From Everand
John Adams
David McCullough
4.5/5 (2542)
The Light Between Oceans: A Novel
From Everand
The Light Between Oceans: A Novel
M L Stedman
4.5/5 (790)
Create GUI Python Programs
PDF
No ratings yet
Create GUI Python Programs
2 pages
Support For GraphQL in generateDS
PDF
No ratings yet
Support For GraphQL in generateDS
6 pages
How To Build A Python GUI Application With Wxpython
PDF
No ratings yet
How To Build A Python GUI Application With Wxpython
17 pages
A Python Book Beginning Python Advanced Python and Python Exercises
PDF
No ratings yet
A Python Book Beginning Python Advanced Python and Python Exercises
261 pages
PaddlePaddle Generative Adversarial Network CN
PDF
No ratings yet
PaddlePaddle Generative Adversarial Network CN
5 pages
ERNIE
PDF
No ratings yet
ERNIE
7 pages
Paddle OCR EN
PDF
No ratings yet
Paddle OCR EN
16 pages
A Cross-Platform ChatGPT Gemini UI
PDF
No ratings yet
A Cross-Platform ChatGPT Gemini UI
15 pages
Writing & Blogging
PDF
No ratings yet
Writing & Blogging
8 pages
Kwai Agents
PDF
No ratings yet
Kwai Agents
7 pages
Learning Assistant
PDF
No ratings yet
Learning Assistant
6 pages
Therapist GPT
PDF
No ratings yet
Therapist GPT
2 pages
Awesome AI Agents
PDF
No ratings yet
Awesome AI Agents
35 pages
Learning Different Languages
PDF
No ratings yet
Learning Different Languages
9 pages
Agents
PDF
No ratings yet
Agents
4 pages
Document Classification With LayoutLMv3
PDF
No ratings yet
Document Classification With LayoutLMv3
25 pages
Auto GPT
PDF
No ratings yet
Auto GPT
7 pages
MemGPT - Unlimited Context (Memory) For LLMs
PDF
No ratings yet
MemGPT - Unlimited Context (Memory) For LLMs
11 pages
Flux.1-Dev - Photorealistic (And Cute) Images
PDF
No ratings yet
Flux.1-Dev - Photorealistic (And Cute) Images
15 pages
Llama 3 - Open Model That Is Truly Useful
PDF
No ratings yet
Llama 3 - Open Model That Is Truly Useful
19 pages
Prompts For Large Language Models
PDF
No ratings yet
Prompts For Large Language Models
6 pages
LLaVA - Large Multimodal Model
PDF
No ratings yet
LLaVA - Large Multimodal Model
15 pages
Private Chatbot With Local LLM (Falcon 7B) and LangChain
PDF
No ratings yet
Private Chatbot With Local LLM (Falcon 7B) and LangChain
14 pages
GPT-4o API Deep Dive Text Generation Vision and Function Calling
PDF
No ratings yet
GPT-4o API Deep Dive Text Generation Vision and Function Calling
21 pages
Fine-Tuning Llama 2 On A Custom Dataset
PDF
No ratings yet
Fine-Tuning Llama 2 On A Custom Dataset
22 pages
ChatGPT-repositories ZH
PDF
No ratings yet
ChatGPT-repositories ZH
81 pages
Awesome Japanese NLP Resources
PDF
No ratings yet
Awesome Japanese NLP Resources
32 pages
Chat With Multiple PDFs Using Llama 2 and LangChain
PDF
No ratings yet
Chat With Multiple PDFs Using Llama 2 and LangChain
17 pages
LangChain QuickStart With Llama 2
PDF
No ratings yet
LangChain QuickStart With Llama 2
16 pages
The Unwinding: An Inner History of the New America
From Everand
The Unwinding: An Inner History of the New America
George Packer
4/5 (45)
Little Women
From Everand
Little Women
Louisa May Alcott
4/5 (105)
The Constant Gardener: A Novel
From Everand
The Constant Gardener: A Novel
John le Carré
3.5/5 (109)
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
From Everand
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
Principles: Life and Work
From Everand
Principles: Life and Work
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
From Everand
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
Never Split the Difference: Negotiating As If Your Life Depended On It
From Everand
Never Split the Difference: Negotiating As If Your Life Depended On It
The Glass Castle: A Memoir
From Everand
The Glass Castle: A Memoir
Grit: The Power of Passion and Perseverance
From Everand
Grit: The Power of Passion and Perseverance
Sing, Unburied, Sing: A Novel
From Everand
Sing, Unburied, Sing: A Novel
The Perks of Being a Wallflower
From Everand
The Perks of Being a Wallflower
Shoe Dog: A Memoir by the Creator of Nike
From Everand
Shoe Dog: A Memoir by the Creator of Nike
Her Body and Other Parties: Stories
From Everand
Her Body and Other Parties: Stories
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
From Everand
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
From Everand
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
Steve Jobs
From Everand
Steve Jobs
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
From Everand
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
The Emperor of All Maladies: A Biography of Cancer
From Everand
The Emperor of All Maladies: A Biography of Cancer
A Man Called Ove: A Novel
From Everand
A Man Called Ove: A Novel
Angela's Ashes: A Memoir
From Everand
Angela's Ashes: A Memoir
Brooklyn: A Novel
From Everand
Brooklyn: A Novel
The Art of Racing in the Rain: A Novel
From Everand
The Art of Racing in the Rain: A Novel
The Yellow House: A Memoir (2019 National Book Award Winner)
From Everand
The Yellow House: A Memoir (2019 National Book Award Winner)
The Little Book of Hygge: Danish Secrets to Happy Living
From Everand
The Little Book of Hygge: Danish Secrets to Happy Living
The World Is Flat 3.0: A Brief History of the Twenty-first Century
From Everand
The World Is Flat 3.0: A Brief History of the Twenty-first Century
Yes Please
From Everand
Yes Please
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
From Everand
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
Bad Feminist: Essays
From Everand
Bad Feminist: Essays
The Outsider: A Novel
From Everand
The Outsider: A Novel
The Woman in Cabin 10
From Everand
The Woman in Cabin 10
A Tree Grows in Brooklyn
From Everand
A Tree Grows in Brooklyn
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
From Everand
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
OpenAI Official Prompt Engineering Guide
PDF
OpenAI Official Prompt Engineering Guide
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
From Everand
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
Team of Rivals: The Political Genius of Abraham Lincoln
From Everand
Team of Rivals: The Political Genius of Abraham Lincoln
Wolf Hall: A Novel
From Everand
Wolf Hall: A Novel
On Fire: The (Burning) Case for a Green New Deal
From Everand
On Fire: The (Burning) Case for a Green New Deal
Rise of ISIS: A Threat We Can't Ignore
From Everand
Rise of ISIS: A Threat We Can't Ignore
Fear: Trump in the White House
From Everand
Fear: Trump in the White House
Manhattan Beach: A Novel
From Everand
Manhattan Beach: A Novel
John Adams
From Everand
John Adams
The Light Between Oceans: A Novel
From Everand
The Light Between Oceans: A Novel
Create GUI Python Programs
PDF
Create GUI Python Programs
Support For GraphQL in generateDS
PDF
Support For GraphQL in generateDS
How To Build A Python GUI Application With Wxpython
PDF
How To Build A Python GUI Application With Wxpython
A Python Book Beginning Python Advanced Python and Python Exercises
PDF
A Python Book Beginning Python Advanced Python and Python Exercises
PaddlePaddle Generative Adversarial Network CN
PDF
PaddlePaddle Generative Adversarial Network CN
ERNIE
PDF
ERNIE
Paddle OCR EN
PDF
Paddle OCR EN
A Cross-Platform ChatGPT Gemini UI
PDF
A Cross-Platform ChatGPT Gemini UI
Writing & Blogging
PDF
Writing & Blogging
Kwai Agents
PDF
Kwai Agents
Learning Assistant
PDF
Learning Assistant
Therapist GPT
PDF
Therapist GPT
Awesome AI Agents
PDF
Awesome AI Agents
Learning Different Languages
PDF
Learning Different Languages
Agents
PDF
Agents
Document Classification With LayoutLMv3
PDF
Document Classification With LayoutLMv3
Auto GPT
PDF
Auto GPT
MemGPT - Unlimited Context (Memory) For LLMs
PDF
MemGPT - Unlimited Context (Memory) For LLMs
Flux.1-Dev - Photorealistic (And Cute) Images
PDF
Flux.1-Dev - Photorealistic (And Cute) Images
Llama 3 - Open Model That Is Truly Useful
PDF
Llama 3 - Open Model That Is Truly Useful
Prompts For Large Language Models
PDF
Prompts For Large Language Models
LLaVA - Large Multimodal Model
PDF
LLaVA - Large Multimodal Model
Private Chatbot With Local LLM (Falcon 7B) and LangChain
PDF
Private Chatbot With Local LLM (Falcon 7B) and LangChain
GPT-4o API Deep Dive Text Generation Vision and Function Calling
PDF
GPT-4o API Deep Dive Text Generation Vision and Function Calling
Fine-Tuning Llama 2 On A Custom Dataset
PDF
Fine-Tuning Llama 2 On A Custom Dataset
ChatGPT-repositories ZH
PDF
ChatGPT-repositories ZH
Awesome Japanese NLP Resources
PDF
Awesome Japanese NLP Resources
Chat With Multiple PDFs Using Llama 2 and LangChain
PDF
Chat With Multiple PDFs Using Llama 2 and LangChain
LangChain QuickStart With Llama 2
PDF
LangChain QuickStart With Llama 2
The Unwinding: An Inner History of the New America
From Everand
The Unwinding: An Inner History of the New America
Little Women
From Everand
Little Women
The Constant Gardener: A Novel
From Everand
The Constant Gardener: A Novel