Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Strvm committed Apr 18, 2024
1 parent b690671 commit 4d126be
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,28 @@ Meta AI is running Llama 3 LLM.
2. **Initialization**:

```python
from meta_ai_api import MetaAI

if __name__ == "__main__":
ai = MetaAI()
response = ai.prompt(message="Whats the weather in San Francisco today? And what is the date?")
print(response)

# Today's weather in San Francisco, CA, on Thursday, April 18, 2024, is mostly sunny and not as warm, with a high of 71 degrees Fahrenheit and a low of 51 degrees Fahrenheit ¹. The wind is coming from the west-southwest direction at a speed between 8 and 10 miles per hour, and the chance of precipitation is 25% ².

response = ai.prompt(message="What was the Warriors score last game?")
print(response)

# The Golden State Warriors' last game was against the Sacramento Kings on April 16, 2024, at the Golden 1 Center,
# in which they lost 118-94 ¹ ². Here are some additional details about the game ¹:
# Venue: Golden 1 Center, Sacramento, USA
# Kings (SAC): 118 points
# Warriors (GSW): 94 points
# Quarter 1: Kings 31, Warriors 22
# Quarter 2: Kings 23, Warriors 28
# Quarter 3: Kings 37, Warriors 26
# Quarter 4: Kings 27, Warriors 18

from meta_ai_api import MetaAI

if __name__ == "__main__":
ai = MetaAI()
response = ai.prompt(message="Whats the weather in San Francisco today? And what is the date?")
print(response)

# Today's weather in San Francisco, CA, on Thursday, April 18, 2024, is mostly sunny
# and not as warm, with a high of 71 degrees Fahrenheit and a low of 51 degrees Fahrenheit ¹.
# The wind is coming from the west-southwest direction at a speed between 8 and 10 miles per hour,
# and the chance of precipitation is 25% ².

response = ai.prompt(message="What was the Warriors score last game?")
print(response)

# The Golden State Warriors' last game was against the Sacramento Kings on April 16, 2024,
# at the Golden 1 Center, in which they lost 118-94 ¹ ². Here are some additional details about the game ¹:
# Venue: Golden 1 Center, Sacramento, USA
# Kings (SAC): 118 points
# Warriors (GSW): 94 points
# Quarter 1: Kings 31, Warriors 22
# Quarter 2: Kings 23, Warriors 28
# Quarter 3: Kings 37, Warriors 26
# Quarter 4: Kings 27, Warriors 18
```

0 comments on commit 4d126be

Please # to comment.