---title: GooseAI---`GooseAI`는 API를 통해 제공되는 완전 관리형 NLP-as-a-Service입니다. GooseAI는 [이러한 모델들](https://goose.ai/docs/models)에 대한 액세스를 제공합니다.이 노트북은 LangChain을 [GooseAI](https://goose.ai/)와 함께 사용하는 방법을 다룹니다.## openai 설치GooseAI API를 사용하려면 `openai` 패키지가 필요합니다. `pip install openai`를 사용하여 `openai`를 설치하세요.```pythonpip install -qU langchain-openai
question = "What NFL team won the Super Bowl in the year Justin Beiber was born?"llm_chain.run(question)
Copy
---<Callout icon="pen-to-square" iconType="regular"> [Edit the source of this page on GitHub.](https://github.com/langchain-ai/docs/edit/main/src/oss/python/integrations/llms/gooseai.mdx)</Callout><Tip icon="terminal" iconType="regular"> [Connect these docs programmatically](/use-these-docs) to Claude, VSCode, and more via MCP for real-time answers.</Tip>