Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,34 +1,45 @@
|
|
| 1 |
---
|
| 2 |
base_model: google/gemma-4-E4B-it
|
| 3 |
license: apache-2.0
|
|
|
|
| 4 |
tags:
|
| 5 |
- selenium
|
| 6 |
- java
|
| 7 |
- experimental
|
| 8 |
-
pipeline_tag: text-generation
|
| 9 |
---
|
| 10 |
|
| 11 |
# selenium-java-llm v0.1
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
-
|
| 16 |
-
diagnosing flaky tests, suggesting resilient locators, explaining failures,
|
| 17 |
-
and emitting `<tool_call>` JSON envelopes.
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
##
|
| 27 |
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
|
|
|
| 31 |
|
| 32 |
## Intended use
|
| 33 |
|
| 34 |
-
Research
|
|
|
|
| 1 |
---
|
| 2 |
base_model: google/gemma-4-E4B-it
|
| 3 |
license: apache-2.0
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
tags:
|
| 6 |
- selenium
|
| 7 |
- java
|
| 8 |
- experimental
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# selenium-java-llm v0.1
|
| 12 |
|
| 13 |
+
Experimental Gemma 4 E4B fine-tune for Selenium Java test reasoning.
|
| 14 |
+
Not an official release. Not affiliated with SeleniumHQ or Google.
|
| 15 |
+
Hallucinates Selenium APIs — always verify generated code.
|
| 16 |
+
Base model licensing (Gemma Terms of Use) governs use.
|
| 17 |
+
|
| 18 |
+
## Serve
|
| 19 |
+
|
| 20 |
+
vllm serve harsha509/selenium-java-llm-v0.1 --max-model-len 131072
|
| 21 |
+
|
| 22 |
+
Exposes OpenAI-compatible endpoint at http://localhost:8000/v1.
|
| 23 |
|
| 24 |
+
## VSCode via Continue.dev
|
|
|
|
|
|
|
| 25 |
|
| 26 |
+
In ~/.continue/config.json add to the "models" array:
|
| 27 |
|
| 28 |
+
{
|
| 29 |
+
"title": "selenium-java-llm",
|
| 30 |
+
"provider": "openai",
|
| 31 |
+
"model": "harsha509/selenium-java-llm-v0.1",
|
| 32 |
+
"apiBase": "http://localhost:8000/v1",
|
| 33 |
+
"apiKey": "not-needed"
|
| 34 |
+
}
|
| 35 |
|
| 36 |
+
## Cursor
|
| 37 |
|
| 38 |
+
Settings -> Models -> Override OpenAI Base URL:
|
| 39 |
+
- Base URL: http://localhost:8000/v1
|
| 40 |
+
- API Key: any non-empty string
|
| 41 |
+
- Model name: harsha509/selenium-java-llm-v0.1
|
| 42 |
|
| 43 |
## Intended use
|
| 44 |
|
| 45 |
+
Research only. Not for production test triage or unattended code edits.
|