harsha509 commited on
Commit
9b125d3
·
verified ·
1 Parent(s): 50a41f2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -15
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
- > **Experimental. Not an official release.**
 
 
 
 
 
 
 
 
 
14
 
15
- Gemma 4 E4B fine-tuned to reason about Selenium WebDriver tests in Java —
16
- diagnosing flaky tests, suggesting resilient locators, explaining failures,
17
- and emitting `<tool_call>` JSON envelopes.
18
 
19
- ## Disclaimers
20
 
21
- - Not affiliated with SeleniumHQ, Google, or any official maintainer.
22
- - Personal research experiment. No warranty, no support.
23
- - Hallucinates Selenium APIs. Always verify generated code.
24
- - Base model licensing (Gemma Terms of Use) governs use.
 
 
 
25
 
26
- ## Usage with vLLM
27
 
28
- ```bash
29
- vllm serve harsha509/selenium-java-llm-v0.1 --max-model-len 32768
30
- ```
 
31
 
32
  ## Intended use
33
 
34
- Research and experimentation. **Not for** production test triage or unattended code edits.
 
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.