CommunityLangChainCopy pageUsing OpenRouter with LangChainUsing LangChain Using LangChain for Python: github Using LangChain.js: github Using Streamlit: github TypeScriptPython1const chat = new ChatOpenAI(2 {3 modelName: '<model_name>',4 temperature: 0.8,5 streaming: true,6 openAIApiKey: '${API_KEY_REF}',7 },8 {9 basePath: 'https://openrouter.ai/api/v1',10 baseOptions: {11 headers: {12 'HTTP-Referer': '<YOUR_SITE_URL>', // Optional. Site URL for rankings on openrouter.ai.13 'X-Title': '<YOUR_SITE_NAME>', // Optional. Site title for rankings on openrouter.ai.14 },15 },16 },17);