Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wilfredinni/ice_breaker
An example implementation of OpenAI and Langchain's ability to easily use third parties to produce internet aware outputs.
https://github.com/wilfredinni/ice_breaker
ai langchain linkedin llm openai python twitter
Last synced: 3 days ago
JSON representation
An example implementation of OpenAI and Langchain's ability to easily use third parties to produce internet aware outputs.
- Host: GitHub
- URL: https://github.com/wilfredinni/ice_breaker
- Owner: wilfredinni
- License: mit
- Created: 2023-05-07T15:10:56.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-07T19:46:29.000Z (over 1 year ago)
- Last Synced: 2024-11-28T01:42:18.606Z (2 months ago)
- Topics: ai, langchain, linkedin, llm, openai, python, twitter
- Language: Python
- Homepage:
- Size: 102 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Icebreaker
An example implementation of OpenAI and Langchain's ability to easily use third parties to produce internet aware outputs.
In this example, Twitter and Linkedin are used to produce the resume of a person.
## Installation
```bash
poetry install
```Use the `.env.example` to create a new `.env` file with your own API keys and secrets.
```bash
python ice_breaker.py
```If you asked for `Guido van Rossum` for example, you would get the following output:
```json
{
"summary": "Guido van Rossum is a computer programmer and the creator of the Python programming language.",
"facts": [
"Van Rossum named Python after the British comedy group Monty Python.",
"He was awarded the Free Software Foundation's Award for the Advancement of Free Software in 2001."
],
"topics_of_interest": [
"Programming languages",
"Artificial intelligence"
],
"ice_breaker": [
"Have you ever attended a Monty Python show?",
"What inspired you to create Python?"
]
}
```