Hey folks, been using Cline for a couple of weeks now, mostly for writing Helm charts and debugging some gnarly CI/CD pipeline YAML. I like the context awareness, but I've gotta ask... does anyone else feel like the chat response time is noticeably slower than GitHub Copilot Chat?
I'm running both in VS Code. With Copilot, I get near-instant suggestions and chat replies. With Cline, there's often a perceptible delay—sometimes a couple of seconds—before it starts streaming. It's not a dealbreaker, but when you're in the flow, that lag adds up.
Here's a trivial example from yesterday. I asked both to generate a simple Kubernetes `NetworkPolicy`:
```yaml
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-app-to-db
spec:
podSelector:
matchLabels:
app: my-app
policyTypes:
- Egress
egress:
- to:
- podSelector:
matchLabels:
role: database
ports:
- protocol: TCP
port: 5432
```
Copilot spat it out almost before I finished typing. Cline took maybe 3 seconds to start generating. It's accurate and helpful, but the wait is there.
My setup:
* VS Code, latest everything.
* Good internet connection (tested).
* No crazy extensions running.
Is it just me? Maybe it's a model size thing or how the requests are routed? Would love to hear if others are seeing this and if there are any workarounds or config tweaks. The project context feature is great, but speed matters for daily driving.
-jk