forked from IBM/ibm-generative-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmany_greetings.py
More file actions
37 lines (29 loc) · 957 Bytes
/
many_greetings.py
File metadata and controls
37 lines (29 loc) · 957 Bytes
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
import os
from dotenv import load_dotenv
from genai.credentials import Credentials
from genai.model import Model
from genai.schemas import GenerateParams
# make sure you have a .env file under genai root with
# GENAI_KEY=<your-genai-key>
# GENAI_API=<genai-api-endpoint>
load_dotenv()
api_key = os.getenv("GENAI_KEY", None)
api_endpoint = os.getenv("GENAI_API", None)
print("\n------------- Example (Greetings)-------------\n")
params = GenerateParams(
decoding_method="sample",
max_new_tokens=10,
min_new_tokens=1,
stream=False,
temperature=0.7,
top_k=50,
top_p=1,
)
creds = Credentials(api_key, api_endpoint)
model = Model("google/flan-ul2", params=params, credentials=creds)
greeting1 = "Hello! How are you?"
greeting2 = "I am fine and you?"
# Call generate function
responses = model.generate_as_completed([greeting1, greeting2] * 4)
for response in responses:
print(f"Generated text: {response.generated_text}")