GCP Vertex AI
Note: This is seperate from the Google PaLM integration. Google has chosen to offer an enterprise version of PaLM through GCP, and this supports the models made available through there.
By default, Google Cloud does not use Customer Data to train its foundation models as part of Google Cloud`s AI/ML Privacy Commitment. More details about how Google processes data can also be found in Google's Customer Data Processing Addendum (CDPA).
To use Vertex AI PaLM you must have the google-cloud-aiplatform
Python package installed and either:
- Have credentials configured for your environment (gcloud, workload identity, etc...)
- Store the path to a service account JSON file as the GOOGLE_APPLICATION_CREDENTIALS environment variable
This codebase uses the google.auth
library which first looks for the application credentials variable mentioned above, and then looks for system-level auth.
For more information, see:
- https://cloud.google.com/docs/authentication/application-default-credentials#GAC
- https://googleapis.dev/python/google-auth/latest/reference/google.auth.html#module-google.auth
#!pip install langchain google-cloud-aiplatform
from langchain.chat_models import ChatVertexAI
from langchain.prompts import ChatPromptTemplate
API Reference:
chat = ChatVertexAI()
system = "You are a helpful assistant who translate English to French"
human = "Translate this sentence from English to French. I love programming."
prompt = ChatPromptTemplate.from_messages(
[("system", system), ("human", human)]
)
messages = prompt.format_messages()
chat(messages)
AIMessage(content=" J'aime la programmation.", additional_kwargs={}, example=False)
If we want to construct a simple chain that takes user specified parameters:
system = "You are a helpful assistant that translates {input_language} to {output_language}."
human = "{text}"
prompt = ChatPromptTemplate.from_messages(
[("system", system), ("human", human)]
)
chain = prompt | chat
chain.invoke(
{"input_language": "English", "output_language": "Japanese", "text": "I love programming"}
)
AIMessage(content=' 私はプログラミングが大好きです。', additional_kwargs={}, example=False)
Code generation chat models
You can now leverage the Codey API for code chat within Vertex AI. The model name is:
- codechat-bison: for code assistance
chat = ChatVertexAI(
model_name="codechat-bison",
max_output_tokens=1000,
temperature=0.5
)
# For simple string in string out usage, we can use the `predict` method:
print(chat.predict("Write a Python function to identify all prime numbers"))
```python
def is_prime(x):
if (x <= 1):
return False
for i in range(2, x):
if (x % i == 0):
return False
return True
```
Asynchronous calls
We can make asynchronous calls via the agenerate
and ainvoke
methods.
import asyncio
# import nest_asyncio
# nest_asyncio.apply()
chat = ChatVertexAI(
model_name="chat-bison",
max_output_tokens=1000,
temperature=0.7,
top_p=0.95,
top_k=40,
)
asyncio.run(chat.agenerate([messages]))
LLMResult(generations=[[ChatGeneration(text=" J'aime la programmation.", generation_info=None, message=AIMessage(content=" J'aime la programmation.", additional_kwargs={}, example=False))]], llm_output={}, run=[RunInfo(run_id=UUID('223599ef-38f8-4c79-ac6d-a5013060eb9d'))])
asyncio.run(chain.ainvoke({"input_language": "English", "output_language": "Sanskrit", "text": "I love programming"}))
AIMessage(content=' अहं प्रोग्रामिंग प्रेमामि', additional_kwargs={}, example=False)
Streaming calls
We can also stream outputs via the stream
method:
import sys
prompt = ChatPromptTemplate.from_messages([("human", "List out the 15 most populous countries in the world")])
messages = prompt.format_messages()
for chunk in chat.stream(messages):
sys.stdout.write(chunk.content)
sys.stdout.flush()
1. China (1,444,216,107)
2. India (1,393,409,038)
3. United States (332,403,650)
4. Indonesia (273,523,615)
5. Pakistan (220,892,340)
6. Brazil (212,559,409)
7. Nigeria (206,139,589)
8. Bangladesh (164,689,383)
9. Russia (145,934,462)
10. Mexico (128,932,488)
11. Japan (126,476,461)
12. Ethiopia (115,063,982)
13. Philippines (109,581,078)
14. Egypt (102,334,404)
15. Vietnam (97,338,589)