Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
OurBuilding Ambient Agents with LangGraph course is now available on LangChain Academy!
Open In ColabOpen on GitHub

Google Translate

Google Translate is a multilingual neural machine translation service developed by Google to translate text, documents and websites from one language into another.

TheGoogleTranslateTransformer allows you to translate text and HTML with theGoogle Cloud Translation API.

To use it, you should have thegoogle-cloud-translate python package installed, and a Google Cloud project with theTranslation API enabled. This transformer uses theAdvanced edition (v3).

%pip install--upgrade--quiet  google-cloud-translate
from langchain_core.documentsimport Document
from langchain_google_communityimport GoogleTranslateTransformer

Input

This is the document we'll translate

sample_text="""[Generated with Google Bard]
Subject: Key Business Process Updates

Date: Friday, 27 October 2023

Dear team,

I am writing to provide an update on some of our key business processes.

Sales process

We have recently implemented a new sales process that is designed to help us close more deals and grow our revenue. The new process includes a more rigorous qualification process, a more streamlined proposal process, and a more effective customer relationship management (CRM) system.

Marketing process

We have also revamped our marketing process to focus on creating more targeted and engaging content. We are also using more social media and paid advertising to reach a wider audience.

Customer service process

We have also made some improvements to our customer service process. We have implemented a new customer support system that makes it easier for customers to get help with their problems. We have also hired more customer support representatives to reduce wait times.

Overall, we are very pleased with the progress we have made on improving our key business processes. We believe that these changes will help us to achieve our goals of growing our business and providing our customers with the best possible experience.

If you have any questions or feedback about any of these changes, please feel free to contact me directly.

Thank you,

Lewis Cymbal
CEO, Cymbal Bank
"""

When initializing theGoogleTranslateTransformer, you can include the following parameters to configure the requests.

  • project_id: Google Cloud Project ID.
  • location: (Optional) Translate model location.
    • Default:global
  • model_id: (Optional) Translatemodel ID to use.
  • glossary_id: (Optional) Translateglossary ID to use.
  • api_endpoint: (Optional)Regional endpoint to use.
documents=[Document(page_content=sample_text)]
translator= GoogleTranslateTransformer(project_id="<YOUR_PROJECT_ID>")

Output

After translating a document, the result will be returned as a new document with thepage_content translated into the target language.

You can provide the following keyword parameters to thetransform_documents() method:

  • target_language_code:ISO 639 language code of the output document.
  • source_language_code: (Optional)ISO 639 language code of the input document.
    • If not provided, language will be auto-detected.
  • mime_type: (Optional)Media Type of the input text.
    • Options:text/plain (Default),text/html.
translated_documents= translator.transform_documents(
documents, target_language_code="es"
)
for docin translated_documents:
print(doc.metadata)
print(doc.page_content)
{'model': '', 'detected_language_code': 'en'}
[Generado con Google Bard]
Asunto: Actualizaciones clave de procesos comerciales

Fecha: viernes 27 de octubre de 2023

Estimado equipo,

Le escribo para brindarle una actualización sobre algunos de nuestros procesos comerciales clave.

Proceso de ventas

Recientemente implementamos un nuevo proceso de ventas que está diseñado para ayudarnos a cerrar más acuerdos y aumentar nuestros ingresos. El nuevo proceso incluye un proceso de calificación más riguroso, un proceso de propuesta más simplificado y un sistema de gestión de relaciones con el cliente (CRM) más eficaz.

Proceso de mercadeo

También hemos renovado nuestro proceso de marketing para centrarnos en crear contenido más específico y atractivo. También estamos utilizando más redes sociales y publicidad paga para llegar a una audiencia más amplia.

proceso de atención al cliente

También hemos realizado algunas mejoras en nuestro proceso de atención al cliente. Hemos implementado un nuevo sistema de atención al cliente que facilita que los clientes obtengan ayuda con sus problemas. También hemos contratado más representantes de atención al cliente para reducir los tiempos de espera.

En general, estamos muy satisfechos con el progreso que hemos logrado en la mejora de nuestros procesos comerciales clave. Creemos que estos cambios nos ayudarán a lograr nuestros objetivos de hacer crecer nuestro negocio y brindar a nuestros clientes la mejor experiencia posible.

Si tiene alguna pregunta o comentario sobre cualquiera de estos cambios, no dude en ponerse en contacto conmigo directamente.

Gracias,

Platillo Lewis
Director ejecutivo, banco de platillos

[8]ページ先頭

©2009-2025 Movatter.jp