How to build a Go application to chat with any web page
Learn how to build this Go app using Amazon Bedrock and langchaingo. Deploy it with AWS CDK and start asking questions!
The code is available on GitHub
langchaingo
as the framework to interact with the Anthropic Claude (v2) model on Amazon Bedrock. The web app uses the Go embed package to serve the static file for the frontend part (HTML, JavaScript and CSS) from directly within the binary.You can refer to the application code here
init
function:1
2
3
4
5
6
7
8
9
10
11
12
func init() {
var err error
region := os.Getenv("AWS_REGION")
if region == "" {
region = defaultRegion
}
llm, err = claude.New(region)
chain = chains.LoadStuffQA(llm)
}
llm, err = claude.New(region)
comes from the langchaingo-amazon-bedrock-llm project that provides Amazon Bedrock extension for LangChain Go.loadData
invokes getDocsFromLink
function that loads HTML data from the web link. The bulk of the work is done by this line - docs, err := documentloaders.NewHTML(resp.Body).Load(context.Background())
that combines NewHTML and Load functions to get the job done.1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
func loadData(w http.ResponseWriter, r *http.Request) {
//... details omitted
}
//...
func getDocsFromLink(link string) ([]schema.Document, error) {
resp, err := http.Get(link)
defer resp.Body.Close()
docs, err := documentloaders.NewHTML(resp.Body).Load(context.Background())
return docs, nil
}
chat
HTTP handler shown below (error handling and other parts omitted for brevity):1
2
3
4
5
6
7
8
9
10
11
12
13
func chat(w http.ResponseWriter, req *http.Request) {
body, err := io.ReadAll(req.Body)
chatMessage := string(body)
answer, err := chains.Call(context.Background(), chain, map[string]any{
"input_documents": docs,
"question": chatMessage,
}, chains.WithMaxTokens(2048))
w.Write([]byte(answer["text"].(string)))
}
You can refer to the CDK code on GitHub
cdk deploy
.1
2
3
4
5
6
git clone https://github.com/build-on-aws/amazon-bedrock-apprunner-chatterdox-webapp/
cd amazon-bedrock-apprunner-chatterdox-webapp/cdk
export DOCKER_DEFAULT_PLATFORM=linux/amd64
cdk deploy
CloudFormation > Stacks > ChatterdoxStack
- App Runner service - this is the web application
- App Runner Instance (IAM) role - this allows access to Amazon Bedrock
- Fetching data from the source (web link),
- Adding it as a context along with the prompt, and,
- Invoking the LLM
Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.