Skip to content

Commit

Permalink
watsonx langchain
Browse files Browse the repository at this point in the history
  • Loading branch information
gyliu513 committed Apr 1, 2024
1 parent 04ff192 commit 87d054f
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions watsonx/watsonx-langchain-traceloop.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
from dotenv import load_dotenv
load_dotenv()
import os

from traceloop.sdk import Traceloop

os.environ['OTEL_EXPORTER_OTLP_INSECURE'] = 'True'

Traceloop.init(app_name="watsonx-langchain")

parameters = {
"decoding_method": "sample",
"max_new_tokens": 100,
"min_new_tokens": 1,
"temperature": 0.5,
"top_k": 50,
"top_p": 1,
}

from langchain_ibm import WatsonxLLM

watsonx_llm = WatsonxLLM(
model_id="ibm/granite-13b-instruct-v2",
url="https://us-south.ml.cloud.ibm.com",
apikey=os.getenv("IAM_API_KEY", None),
project_id=os.getenv("PROJECT_ID"),
params=parameters,
)
'''
from langchain.prompts import PromptTemplate
template = "Generate a random question about {topic}: Question: "
prompt = PromptTemplate.from_template(template)
from langchain.chains import LLMChain
llm_chain = LLMChain(prompt=prompt, llm=watsonx_llm)
llm_chain.invoke("dog")
'''

# Calling a single prompt

# watsonx_llm.invoke("Who is man's best friend?")


'''watsonx_llm.generate(
[
"The fastest dog in the world?",
"Describe your chosen dog breed",
]
)'''

0 comments on commit 87d054f

Please sign in to comment.