Nova postagem

Pesquisar

Artigo
· Abr. 25, 2024 7min de leitura

Guide de création d'une IA personnalisée avec ChatGPT en utilisant LangChain, étape par étape

En tant que modèle linguistique d'IA, ChatGPT est capable d'effectuer une variété de tâches telles que traduire, écrire des chansons, répondre à des questions de recherche et même générer du code informatique. Avec ses capacités impressionnantes, ChatGPT est rapidement devenu un outil populaire pour diverses applications, des chatbots à la création de contenu.
Mais malgré ses capacités avancées, ChatGPT n'est pas en mesure d'accéder à vos données personnelles. Mais malgré ses capacités avancées, ChatGPT n'est pas en mesure d'accéder à vos données personnelles. Ainsi, dans cet article, je vais démontrer les étapes suivantes pour construire une IA ChatGPT personnalisée en utilisant le LangChain Framework:

1 Comment
Discussão (1)1
Entre ou crie uma conta para continuar
Discussão (1)1
Entre ou crie uma conta para continuar
Artigo
· Abr. 25, 2024 1min de leitura

Regarding naming conventions for table names (class names) and column names (property names)

InterSystems FAQ rubric

For naming conventions, please check the respective document pages below.

About table name (class name): Identifier rules and guidelines - classes

About column names (property names): Identifier rules and guidelines - class members

As stated here, only alphanumeric characters and characters with Unicode code points larger than ASCII 128 can be used in column names (property names).

  • The name must begin with a letter, a Unicode code point greater than ASCII 128, or a percent sign (%).
  • The remaining characters must be alphabetic, letters or numbers with a Unicode code point greater than ASCII 128.

Also, as it says in the "Release 2012.2 or later" section

Property "My Property" As %String;

By surrounding it with ", you can use symbols that cannot be used.

Alternatively, you can specify only the SQL field name using only alphanumeric characters for the property name.

Property iscname As %String [ SqlFieldName = isc_name ];

Discussão (0)1
Entre ou crie uma conta para continuar
Pergunta
· Abr. 25, 2024

Disable all operations in a production

Hi Team, 

Is there any way to disable all operation ( or services) in a production entirely? 

For example when restoring from one HealthShare environment to another we may need to get the configs (IP, port, ssl etc ) updated before staring the operation. We set the production autostart to disabled but still need to disable the operation one by one if we want to start production without operations enabled.  

Thank you for your help. 

6 Comments
Discussão (6)2
Entre ou crie uma conta para continuar
Discussão (0)1
Entre ou crie uma conta para continuar