Skip to content

Commit

Permalink
Fix cspell issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nagkumar91 committed Apr 19, 2024
1 parent c87e4d0 commit afb10af
Showing 2 changed files with 84 additions and 97 deletions.
177 changes: 82 additions & 95 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -48,7 +48,8 @@
".github/workflows/**",
".github/actions/**",
".github/pipelines/**",
".github/CODEOWNERS"
".github/CODEOWNERS",
"src/promptflow-evals/tests/**"
],
"words": [
"aoai",
@@ -108,122 +109,103 @@
"uvicorn"
],
"ignoreWords": [
"prompty",
"AADSTS700082",
"punc",
"mltable",
"tiktoken",
"Mobius",
"evals",
"nlines",
"openmpi",
"ipynb",
"xdist",
"pydash",
"tqdm",
"rtype",
"Hwfoxydrg",
"thead",
"yamls",
"runsv",
"continuumio",
"epocs",
"fout",
"funcs",
"todos",
"fstring",
"creds",
"zipp",
"gmtime",
"pyjwt",
"nbconvert",
"nbformat",
"pypandoc",
"dotenv",
"miniconda",
"datas",
"pydash",
"genutils",
"werkzeug",
"tcgetpgrp",
"yamls",
"fmt",
"httpx",
"pkill",
"levelno",
"nohup",
"pyjwt",
"wscript",
"serpapi",
"genutils",
"metadatas",
"tiktoken",
"bfnrt",
"orelse",
"thead",
"sympy",
"endofprompt",
"miniconda",
"getch",
"ghactions",
"esac",
"LANCZOS",
"cmpl",
"spawnve",
"metadatas",
"llmops",
"unlabel",
"llms",
"MSRC",
"pycln",
"strictyaml",
"uqkvl",
"nologo",
"psutil",
"getch",
"tcgetattr",
"TCSADRAIN",
"stringio",
"jsonify",
"werkzeug",
"continuumio",
"pydantic",
"iterrows",
"dtype",
"gunicorn",
"Pyinstaller",
"fillna",
"nlines",
"aggr",
"pycln",
"jsonify",
"MSRC",
"metagenai",
"tcsetattr",
"xdist",
"addrs",
"tcgetpgrp",
"setenv",
"epocs",
"vcrpy",
"TCSADRAIN",
"nbconvert",
"dotenv",
"fout",
"STARTF",
"otel",
"fillna",
"tqdm",
"gmtime",
"ghactions",
"runsvdir",
"pywin",
"serpapi",
"pysqlite",
"zipp",
"AADSTS700082",
"Pyinstaller",
"runsvdir",
"runsv",
"levelno",
"LANCZOS",
"Mobius",
"ruamel",
"gunicorn",
"pkill",
"pgrep",
"Hwfoxydrg",
"llms",
"vcrpy",
"uionly",
"llmops",
"Abhishek",
"restx",
"httpx",
"tiiuae",
"aiohttp",
"nohup",
"metagenai",
"WBITS",
"laddr",
"nrows",
"funcs",
"orelse",
"Unlabel",
"ipynb",
"Dumpable",
"XCLASS",
"otel",
"OTLP",
"pgrep",
"pypandoc",
"nbformat",
"psutil",
"spawnv",
"fstring",
"pydantic",
"arxiv",
"autogen",
"spawnve",
"addrs",
"pywin",
"STARTF",
"mltable",
"prompty",
"Prompty",
"setenv",
"cscript",
"nologo",
"wscript",
"raisvc",
"restx",
"WBITS",
"cscript",
"bfnrt",
"ruamel",
"Prompty",
"todos",
"uionly",
"tcgetattr",
"stringio",
"Dumpable",
"XCLASS",
"iterrows",
"laddr",
"unbatched",
"creds",
"pybase",
"tkey",
"tparam",
"ncols",
"wohdjewodhfjevwdjfywlemfhe",
"dontcare",
"evals",
"redoc",
"starlette",
@@ -234,7 +216,12 @@
"mpnet",
"wargs",
"dcid",
"Deuter"
"cmpop",
"aiohttp",
"endofprompt",
"tkey",
"tparam",
"ncols"
],
"flagWords": [
"Prompt Flow"
Original file line number Diff line number Diff line change
@@ -30,8 +30,8 @@ def is_closing_message_helper(response: str):
message = response.lower()
if "?" in message.lower():
return False
punc = [".", ",", "!", ";", ":"]
for p in punc:
punctuation = [".", ",", "!", ";", ":"]
for p in punctuation:
message = message.replace(p, "")
if (
"bye" not in message.lower().split()

0 comments on commit afb10af

Please sign in to comment.