-
Notifications
You must be signed in to change notification settings - Fork 2.1k
add nlq to OpenMetadataApplicationConfig #27988
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 4 commits
c4f8769
fbccb2e
6aa1640
6d36aa4
be12eb2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -79,7 +79,13 @@ public OpenAIEmbeddingClient(ElasticSearchConfiguration config) { | |
| String endpoint, | ||
| boolean isAzure) { | ||
| this( | ||
| httpClient, apiKey, modelId, dimension, endpoint, isAzure, DEFAULT_MAX_CONCURRENT_REQUESTS); | ||
| httpClient, | ||
| apiKey, | ||
| modelId, | ||
| dimension, | ||
| endpoint, | ||
| isAzure, | ||
| new NaturalLanguageSearchConfiguration().getMaxConcurrentRequests()); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Quality: Instantiating config object just to read a default valueThe change replaces Suggested fix: Was this helpful? React with 👍 / 👎 | Reply |
||
| } | ||
|
|
||
| OpenAIEmbeddingClient( | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.