Skip to content

Commit

Permalink
Semantic text notebook (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikep86 authored Jul 5, 2024
1 parent d668331 commit f6e00c4
Show file tree
Hide file tree
Showing 4 changed files with 586 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ Try out Playground in Kibana with the following notebooks:
- [`04-multilingual.ipynb`](./notebooks/search/04-multilingual.ipynb)
- [`05-query-rules.ipynb`](./notebooks/search/05-query-rules.ipynb)
- [`06-synonyms-api.ipynb`](./notebooks/search/06-synonyms-api.ipynb)
- [`07-inference.ipynb`](./notebooks/search/07-inference.ipynb)
- [`08-learning-to-rank.ipynb`](./notebooks/search/08-learning-to-rank.ipynb)
- [`09-semantic-text.ipynb`](./notebooks/search/09-semantic-text.ipynb)

### Integrations

Expand Down
5 changes: 5 additions & 0 deletions bin/find-notebooks-to-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ EXEMPT_NOTEBOOKS__8_12=(
"notebooks/langchain/langchain-using-own-model.ipynb"
)

EXEMPT_NOTEBOOKS__8_14=(
# Add any notebooks that must be skipped on versions 8.14 or older here
"notebooks/search/09-semantic-text.ipynb"
)

# this function parses a version given as M[.N[.P]] or M[_N[_P]] into a numeric form
function parse_version { echo "$@" | awk -F'[._]' '{ printf("%02d%02d\n", $1, $2); }'; }

Expand Down
Loading

0 comments on commit f6e00c4

Please sign in to comment.